home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ WMP 6.xpl
< prev
next >
Wrap
Text File
|
2002-03-16
|
1KB
|
40 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH 1"="Program Options\Built in Windows Apps\Windows Media Player"
"UIPATH 2"="Internet\Windows Media Player"
"NAME"="Updates available Message"
"VERSION"="1.00"
"LANGUAGE"="VBScript"
"TEXT 1"="Enable "Updates available" Message"
"DESCRIPTION 1"="By default, Windows Media Player checks for updates from time to time. This plug-in allows you to enable or disable this message."
"AUTHOR"="Ojatex@aol.com"
"CONTACTURL"="http://members.aol.com/ojatex/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="Thanks to CptSiskoX for tip & settings."
sP="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MediaPlayer\PlayerUpgrade\AskMeAgain"
Sub Plugin_Initialize
s=RegReadValue(sP)
if IsEmpty(s) or s="yes" then
Call SetUIElement(1,true)
end if
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sP,"yes",1)
else
Call RegWriteValue(sP,"no",1)
end if
End Sub
Sub Plugin_Terminate
End Sub